home *** CD-ROM | disk | FTP | other *** search
- /*
- * 1541d64.h - 1541-Emulation in .d64-Datei
- *
- * Copyright (C) 1994-1995 by Christian Bauer
- */
-
- #ifndef F1541D64_H
- #define F1541D64_H
-
- #include "IEC.h"
-
- // Exportierte Funktionen
- extern void D64_Init (DriveData *drive, char *prefs);
- extern void D64_Exit (DriveData *drive);
- extern int D64_Open (DriveData *drive, int channel, char *filename);
- extern int D64_Close (DriveData *drive, int channel);
- extern int D64_Read (DriveData *drive, int channel, char *data);
- extern int D64_Write (DriveData *drive, int channel, char data, char eof);
-
- #endif
-